home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / EasyPHP-2.0b1-setup.exe / {app} / phpmyadmin / tbl_properties.php < prev    next >
Encoding:
PHP Script  |  2006-11-18  |  811 b   |  39 lines

  1. <?php
  2. /* $Id: tbl_properties.php 8465 2006-02-04 18:38:42Z lem9 $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. require_once('./libraries/common.lib.php');
  6.  
  7. /**
  8.  * Runs common work
  9.  */
  10. require('./libraries/tbl_properties_common.php');
  11. $url_query .= '&goto=tbl_properties.php&back=tbl_properties.php';
  12.  
  13. require_once('./libraries/sql_query_form.lib.php');
  14.  
  15. $err_url   = 'tbl_properties.php' . $err_url;
  16. $goto = 'tbl_properties.php';
  17. $back = 'tbl_properties.php';
  18.  
  19. /**
  20.  * Get table information
  21.  */
  22. require_once('./libraries/tbl_properties_table_info.inc.php');
  23.  
  24. /**
  25.  * Displays top menu links
  26.  */
  27. require_once('./libraries/tbl_properties_links.inc.php');
  28.  
  29. /**
  30.  * Query box, bookmark, insert data from textfile
  31.  */
  32. PMA_sqlQueryForm();
  33.  
  34. /**
  35.  * Displays the footer
  36.  */
  37. require_once('./libraries/footer.inc.php');
  38. ?>
  39.